runtime.hmap.count (field)
40 uses
runtime (current package)
map.go#L119: count int // # live cells == size of map. Must be first (used by len() builtin)
map.go#L408: if h == nil || h.count == 0 {
map.go#L469: if h == nil || h.count == 0 {
map.go#L519: if h == nil || h.count == 0 {
map.go#L657: if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
map.go#L682: h.count++
map.go#L708: if h == nil || h.count == 0 {
map.go#L795: h.count--
map.go#L798: if h.count == 0 {
map.go#L822: if h == nil || h.count == 0 {
map.go#L998: if h == nil || h.count == 0 {
map.go#L1012: h.count = 0
map.go#L1044: if !overLoadFactor(h.count+1, h.B) {
map.go#L1400: return h.count
map.go#L1412: return h.count
map_fast32.go#L18: if h == nil || h.count == 0 {
map_fast32.go#L58: if h == nil || h.count == 0 {
map_fast32.go#L156: if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
map_fast32.go#L172: h.count++
map_fast32.go#L246: if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
map_fast32.go#L262: h.count++
map_fast32.go#L278: if h == nil || h.count == 0 {
map_fast32.go#L347: h.count--
map_fast32.go#L350: if h.count == 0 {
map_fast64.go#L18: if h == nil || h.count == 0 {
map_fast64.go#L58: if h == nil || h.count == 0 {
map_fast64.go#L156: if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
map_fast64.go#L172: h.count++
map_fast64.go#L246: if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
map_fast64.go#L262: h.count++
map_fast64.go#L278: if h == nil || h.count == 0 {
map_fast64.go#L349: h.count--
map_fast64.go#L352: if h.count == 0 {
map_faststr.go#L18: if h == nil || h.count == 0 {
map_faststr.go#L113: if h == nil || h.count == 0 {
map_faststr.go#L275: if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
map_faststr.go#L290: h.count++
map_faststr.go#L306: if h == nil || h.count == 0 {
map_faststr.go#L375: h.count--
map_faststr.go#L378: if h.count == 0 {